home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database Designers / Rational Rose 2000 / Rational Setup.EXE / common / OutOfTheBox / synchronizer rules / uc_requirement_to_tr_requirement.rsd < prev   
Encoding:
Text File  |  1999-09-01  |  893 b   |  27 lines

  1. # File:        uc_requirement_to_tr_requirement.rsd
  2. # Purpose:    Sample rule to create a test requirement corresponding to
  3. #        a Use case requirement in a Rational RequisitePro
  4. #        domain project. It also traces the test requirement back to the
  5. #        Use-case database requirement.
  6.  
  7. ###############################################################################
  8. #
  9. # Create a test requirement corresponding to a use case requirement.
  10. begin rule "Create Test requirement from Use Case requirement"
  11.  
  12. description
  13. {
  14. For a use case requirement, create a test requirement that will be used
  15. by TestStudio.  This rule applies when the Test attribute on the UC requirement
  16. is True.
  17. }
  18.  
  19.     projects RequisitePro to RequisitePro
  20.     items "Use Case Requirement Type" to "Test Requirement Type"
  21.     applies when Test = True
  22.     properties
  23.         source.Text init target.Text
  24.     trace target to source
  25.  
  26. end rule
  27.